specifies the CSS class that will be applied to a row of the Timeline view
section | object | the section object |
timeline | object | the timeline object |
Available only in PRO Edition
scheduler.templates.timeline_row_class = function(section, timeline){
return "";
};
The template requires the timeline plugin to be activated.
The default value of the template is:
scheduler.templates.{timelineName}_row_class = function(section, timeline){
if(timeline.folder_events_available && section.children){
return "folder";
}
return "";
};
added in v5.3.9
Back to top